home *** CD-ROM | disk | FTP | other *** search
/ Object Oriented Applicat…isualAge for C++ for OS/2 / Object-Oriented Application Development with VisualAGE for C++ for OS2.iso / read.ctw < prev    next >
Text File  |  1996-02-19  |  2KB  |  48 lines

  1. ------------------------------------------------------------------------
  2.  
  3.  Read me for CSD Level 1 of WorkFrame/2 V3.0
  4.  ===========================================
  5.  
  6. Install instructions:
  7. =====================
  8.  
  9.    If WorkFrame has been used on your machine, you must reboot your machine
  10.    before installing this CSD.  After installing this CSD, you must also
  11.    reboot your machine for the changes in this CSD to take effect.
  12.  
  13.    Once you have rebooted after the CSD has been installed, you must make
  14.    the following change:
  15.  
  16.    MakeMake has been changed in this CSD so that it will now generate a
  17.    make file which will cause all intermediate and target files
  18.    generated by the make (like object files, for example) to be
  19.    placed in the project's working directory.  Before this CSD,
  20.    all intermediate and target files were (wrongly) being output
  21.    into the source directory.  In spite of this change, however,
  22.    there is still a problem with the Resource Compiler action.
  23.  
  24.    The default options for the Resource Compiler action puts the target
  25.    .RES file in the same directory as the source .RC file, regardless of
  26.    the working directory set for the project.  If the working directory
  27.    is not the same as the source directory containing the .RC file, then
  28.    the make file generated by MakeMake will fail as it looks for the .RES
  29.    file in the working directory.
  30.  
  31.    To fix this problem, you will need to change the options
  32.    for the Resource Compiler action.  Change the Resource Compiler
  33.    options in the default VACPP project (in \IBMCPP\MAINPRJ) so
  34.    that it will apply to all your projects that inherit from it.
  35.    The default Resource Compiler options are currently set to
  36.    "%q%n.RES".  You need to changed this to ".\%n.RES" so that the
  37.    correct make file will be generated by MakeMake.  Follow these
  38.    steps to accomplish this:
  39.  
  40.    1) Through the Drives folders, find your VACPP project in
  41.       the \MAINPRJ\VACPP subdirectory.  Open the project.
  42.    2) Go to the Tools Setup window of the default project.
  43.    2) Expand the Compile action.
  44.    3) Right mouse click on the Resource Compiler icon.
  45.       and select the "File Options->Change" menu selection
  46.    5) In the Parameters field, change "%q" to ".\"
  47.  
  48.